home *** CD-ROM | disk | FTP | other *** search
- /*
- * fsrmtNameOpsInt.h --
- *
- * Internal definitions for pathname related operations that go
- * with the other definitions in fsNameOps.h. This file is
- * needed because of the FsrmtUnionData which is a pain to export
- * to user programs because it references private
- * file, device, and pseudo-device data.
- *
- * Copyright 1986 Regents of the University of California
- * All rights reserved.
- *
- *
- * $Header: /cdrom/src/kernel/Cvsroot/kernel/fsrmt/fsrmtNameOpsInt.h,v 9.1 90/10/08 15:08:36 mendel Exp $ SPRITE (Berkeley)
- */
-
- #ifndef _FSNAMEOPSINT
- #define _FSNAMEOPSINT
-
- #include <fsNameOps.h>
- #include <fsioFile.h>
- #include <fsioDevice.h>
- #include <fspdev.h>
-
- /*
- * The stream data is a reference to the following union. The union is used
- * to facilitate byte-swaping in the RPC stubs.
- */
- typedef union FsrmtUnionData {
- Fsio_FileState fileState;
- Fsio_DeviceState devState;
- Fspdev_State pdevState;
- } FsrmtUnionData;
-
- typedef struct FsrmtOpenResultsParam {
- int prefixLength;
- Fs_OpenResults openResults;
- FsrmtUnionData openData;
- } FsrmtOpenResultsParam;
-
- #endif _FSNAMEOPSINT
-